home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / INTERNET / SITES / RAND / DVIEW030.LZH / TIMER.C < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-10  |  263 b   |  18 lines

  1. #ifdef __GNUC__
  2. #include <osbind.h>
  3. #else
  4. #include <tos.h>
  5. #endif
  6.  
  7. long get_timer(void)
  8. {
  9.    long     savessp;
  10.    unsigned long  timev;
  11.  
  12.    savessp = (long)Super(0L);
  13.    timev   = *(long *)(0x4baL);
  14.    Super((void*)savessp);
  15.  
  16.    return(timev);
  17. }
  18.